







ReadOnlyDictionaryBase<(Of <TKey, TValue>)>..::Contains Method (KeyValuePair<(Of <TKey, TValue>)>) |
See Also |
![]() ![]() |
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Determines if a dictionary contains a given KeyValuePair. This implementation checks to see if the
dictionary contains the given key, and if the value associated with the key is equal to (via object.Equals)
the value.
Namespace: Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
C# |
---|
public virtual bool Contains( KeyValuePair<TKey, TValue> item ) |
Visual Basic (Declaration) |
---|
Public Overridable Function Contains ( _ item As KeyValuePair(Of TKey, TValue) _ ) As Boolean |
Visual C++ |
---|
public: virtual bool Contains ( KeyValuePair<TKey, TValue> item ) |
Parameters
- item
- KeyValuePair<(Of <TKey, TValue>)>
A KeyValuePair containing the Key and Value to check for.